8f4d5a743f94870292017a667e811069ac09974f,src/com/redhat/ceylon/ceylondoc/CeylonDocTool.java,CeylonDocTool,doc,#Declaration#,394
Before Change
private void doc(Declaration decl) throws IOException {
if (decl instanceof ClassOrInterface) {
if (shouldInclude(decl)) {
FileWriter writer = new FileWriter(getObjectFile(decl));
try {
new ClassDoc(this, writer,
(ClassOrInterface) decl,
After Change
private void doc(Declaration decl) throws IOException {
if (decl instanceof ClassOrInterface) {
if (shouldInclude(decl)) {
Writer writer = openWriter(getObjectFile(decl));
try {
new ClassDoc(this, writer,
(ClassOrInterface) decl,